All,
I am trying to use syncfusion data grid in xamarin forms now.I have installed trial version as of now. I have created demo from this link
All is fine.I have added all references,no errors at all. but it doesn't shows the datagrid in output( i am using vs inbuilt emulator).it just shows the blank screen like
I couldn't find anything wrong what I have done in my code from above link.its really simple but still why I am not getting output.please help.
Thanks in advance
If you load SfDataGrid directly as a child, the grid will be loaded. If you want to load SfDataGrid inside a ScrollView or a StackLayout, refer the below UG link to achieve it,
https://help.syncfusion.com/xamarin/sfdatagrid/getting-started#launching-the-sfdatagrid-inside-a-stacklayout
Also, you can refer our KB link below to achieve your requirement.
https://www.syncfusion.com/kb/6169/how-to-load-sfdatagrid-in-a-stacklayout
If you need further assistance, please create a new support incident, using our direct trac system.
https://www.syncfusion.com/account/login
-Divakar
Related
I finished the functionalities of my app. Now when user first time login i need to make introduction guide on every page, with a short text Myabe some alert. Also on the dialog need chechbox , if he check the guide wont show again. I dont know where to start and how to organize this. Any example, practise to start. On all the dialogs will be static text.
You can refer any sample which guides you to create Tutorial Screen.
You can use built in Carousel View to have that as well.
Here I'm sharing one of that: How to add tutorial screen in Xamarin.Forms
Edit
To add it on every single page, you can use custom Popup, which can be created using Rg.Plugins.Popup
I am using github.com/PrismLibrary/Prism/tree/master/Sandbox/Xamarin/HelloWorld to implement MasterDetail using Prism.
I have successfully ran the example and all is fine but the menu is covering phone top notification area. How can I solve this?
Please see the issue here
In Xamarin example https://developer.xamarin.com/samples/xamarin-forms/Navigation/MasterDetailPage/
this issue is not happending.
Do I have to do some addition trick with Prism that is not done in HelloWorld example?
Thanks
Tadas
That is an old sample that does not use Material Design. All the newer Xamarin.Forms templates utilize material design which result in the master showing over the topmost bar. You could also try playing with the MasterBehavior property to control how the master behaves.
I am new to TurboGears2 and by extension ToscaWidgets2. I am following the tutorial given here http://turbogears.readthedocs.org/en/latest/cookbook/datagrid.html
for creating a basic datagrid. When I view the index page, all I see is this:
class 'tw2.core.params.DataGrid_s_s'
I have also tried using a DataGrid for showing data from an existing DB, but I also get the same above result. Shouldn't there be a .css file that would handle the grid generation/display?
I have checked past tutorials for using DataGrid on TurboGears, and when it comes to displaying the grid, they only show this line:
${grid(value=data} ( or ${grid(data)} in older TG versions).
Since there are no errors being shown, I am at a complete loss here. I have searched online for a solution on this, but I haven't been lucky. Any advice on how to get around this?
Cheers,
DM
It changed in recent ToscaWidgets versions, when you want to display a widget (like the DataGrid) you should prefer an explicit call to the display method instead of calling the widget itself.
try to replace ${grid(value=data} with ${grid.display(value=data}
Have a look at the Forms tutorial, it covers some basics on working with forms and TW2 widgets, the DataGrid in the ends it's just a Widget so behaves like forms for some features.
I have a flex application showing a chart. I want to give user the functionality to download this chart as image. How can i do it?
This Adobe Cookbook entry can answer your question. And yes, your project should be targeted Flash Player 10.
I would use the ImageSnapshot class to take a 'pic' of the chart, then save it locally using FileReference.save().
I'm intending to create a flash app that pulls images from facebook and displays them in a slideshow format.
Has some here tried this? or does anyone have suggestions/advice/links on where to find information on this.
I have had a look at;
http://components.zerofractal.com/FacebookBridge/
has anyone succesfully used this? I couldn't find examples.
and
http://www.adobe.com/devnet/facebook/
however most examples I found are created using flex.
You can use the Facebook API for flash. Here is a link to it. They have a flex and a flash library.
http://code.google.com/p/facebook-actionscript-api/
Hope this helps.