Advanced Forum Search Results
-
When you request the page (aspx or html) having silverlight component (Application) on it, what happens is, the server responds with the xap file. The silverlight runtime installed on your machine will identify the xal file and open/load the silverlight component. and this component will keep running on your machine.
It has nothing to do ...
-
Cool, Thanks it worked!!
-
Great! Thanks Mog Liang, This worked :)
-
1. On load of the Application main page, Open a popup that shadows whole page and shows loading animation.
2. And start Async call that will load all the data in your object cache.
3 In the AsynchRequestCompleted event close the popup.
//Main page xaml
"RootPage"
...
-
Still no luck! :(
-
Hi Mog Liang,
I have created the custom column by inheriting DataGridTemplateColumn as below but still the hyperlinkButton control's click event isn't getting called. What may be wrong with this code? public string Text
{
get { return (string)GetValue(TextProperty); }
set { SetValue(TextProperty, ...
-
I have template defined in generic xaml file. And a custom control is creating the datagridcolumn at runtime (I need it runtime only!). When I define an event say click event, it fails while adding column in datagrid saying,
AG_E_PARSER_BAD_PROPERTY_VALUE
my code is as below
<StackPanel.Resources>
<DataTemplate ...
-
I have template defined in generic xaml file. And a custom control is creating the datagridcolumn at runtime (I need it runtime only!). When I define an event say click event, it fails while adding column in datagrid saying,
AG_E_PARSER_BAD_PROPERTY_VALUE
my code is as below
<StackPanel.Resources>
<DataTemplate ...
-
This code I wrote for a custom control, that created the dataGrid with paging and searching functionality. User of this cust control sets only the dataSource and the list of columns (I have a GridColumn class for configuring columns). If user want to show an image for any of the property, he is expected to configure column for that ...
-
Hi,
I have created the custom DataGridImageColumn by inherating the DataGridTemplateColumn class. Please see the code below. And I have exposed Binding property, when property is bound I am setting binding to the Imagecolumn, but the binding is not working. i.e. column appears blank when grid is populated with data.
I have checked that binding ...