-
If you are using the Wizard, click Other, then click the ... button next to Font...then select the font you want. If you are setting this in code behind: Chart1.Legend.Visible = true ; Chart1.Legend.Font = new System.Drawing.Font(" Arial ", 16); Hope this helps. Cheers,
-
I would like to be able to have a SelectedNode Template for my treeview.
So far I have made a SelectedNode Template and using the onSelect event I have changed its template using javascript and it works fine.
However I do not know how to get the PREVIOUS node so I can reset its client template to the normal template?
Any examples or advice on this one?
-
I always get this error when trying to bind to a ClientTemplate: Microsoft JScript runtime error: Object doesn't support this property or method here is my code: ## DataItem.GetProperty('Text').get_value() ##
-
I have ran into a strange issue with the ComboBox combined with multiple UpdatePanels and the ComboBox being hosted in a Dialog. If the dialog, which is contained an UpdatePanel, is displayed by setting the IsShowing property equal to true during a partial page postback initiated by a button in a different UpdatePanel, the ComboBox dropdown arrow does not work initially. If you place the cursor in the textbox and press the down arrow key on your keyboard and THEN click the dropdown arrow it begins...
-
I have a problem with grid data bind during manual paging.All the page data are displayed except the 2nd page data.
I can see that datasource has the 2nd page data but for some reason its not displayed.Let me know if there is a solution for this.
Thanks
-
To which datasource grid can be bound?
-
Hi, Add to dictionary is not working fine. we want to add a word to user-defined dictionary. Sugession list must be shown from both dictinary & user-defined dictionary. Please help me its urjent. Thanks Sreenivas
-
Hi If you go to the http://aspnetajax.componentart.com/control-specific/grid/editing/editing_dataCallbackMode/WebForm1.aspx page Click "Add row". Click "Cancel" on the new row. Click "Add row". Now the new entry contains an empty "Category" column. This is tested in firefox 3.5.3, ie8 and opera 10 on Vista. best regards Henrik Pedersen Denmark
-
I am trying to get DragAcross trees working - I took the client-side demo you have as a start. The two trees are first loaded by the xml data you have for the demo. DragAcross trees works fine. However, when I perform an ajax postback and programmatically clear the nodes from both trees and add new ones the drag & drop does not work. The javascript never gets fired. Any ideas? function TreeView_onNodeBeforeMove(sender, eventArgs) { var movingNode = eventArgs.get_node(); var sourceTreeView = eventArgs...
-
ANSWER: Seconds after I wrote this post I just found out that "eventArgs.get_index()" could help me... :-) I will check this.