Hi
I want to drag a row from a radgrid and drop it in a specific cell of another Radgrid and save it. Is it possible? If possible then please Help me as soon as possible.
I have a requirement is to change the infragistics control to telerik control. As I'm new in the Telerik could anyone help me is there any other control instead of using the menu .ascx. Currently this infragistics control has been used as a menu which is in the menu.ascx.
sample code currently using just the format but not the full code....
<iglbar:ultraweblistbar ----- >
<Groups>
<iglbar:Group
<iglbar:Item --->
</iglbar:Item>
<HeaderAppearance>
<HeaderAppearance>
</iglbar:Group>
Again the same other group occur as below
<iglbar:Group>
</iglbar:Group>
<Groups>
Could you please let me know is there any possible replacement of this infragistics control to telerik control. As this ascx been used as user control (actually a menu )in many pages.
I have rad tree with edit to be "in place ", when i click on Edit icon to edit combobox, webservice is not picking data, meaning if i remove the bold line in RadAjaxManagerProxy it is working but when i have ajax control it is not working
I have a grid where I need to create custom filtering, but I am not sure exactly how or where to modify the MasterTableView.FilterExpression.
The grid has multiple columns - each of which can be filtered. The final column is a status column controlled by a DropDownList that is dependent on several of my object properties. I need to add one of the following to the filter expression: (Property1 == null), (Property2 == null) or (Property1 != null && Property2 != null). I can add the proper filtering text to the FilterExpression in response to the DropDownList's OnSelectedIndexChanged and the filtering works fine.However, when I change the filtering for one of the other columns, my custom filter expression is lost.
First, is there a way of setting just the additional filter expression to let the grid include it in the FilterExpression?
If not, what event should I be using to make sure the custom part of the filter expression is included when another column's filtering changes?
Is there a way to use the checkbox column on the client side without putting the radtreelist in edit mode? I want the behavior of the select column but without allowing whole row selection.
I am using telerik UI for Asp.net Ajax version 2012.3.1016.40. I am trying to display Goto page control in radgrid's pager. I have set the pager style mode to NextPrevNumericAndAdvanced. But Goto page control is not displaying in pager. I am able to display Advanced Goto page control using jQuery and CSS. But I want them to be displayed withiout any extra code. Am I missing anything?
jQuery+CSS code to display Advanced pager controls:
$('div.rgAdvPart').css('display','block');
Here I am providing sample code. I have removed <columns> section.
I have a batch editable RadGrid with a column that contains comboboxes for selecting the value in the editable cell. When the cell is not in edit mode, the text for the item selected in the combo box is shown (and the ID value stored) and when in edit mode the combo box appear so the user can select a value. What I'd like users to be able to do is click the header for this column and have the column sorted by the displayed text. I am not seeing a way readily to do this. Has anyone run into a similar situation before?
I’m having trouble with a form that I am working on and I’m
not sure if this is the best way to do it (yes I’m newer to programming). I
have a form with multiple buttons and different input fields, each button when
clicked needs to validate different controls. i.e button one validates txt1,
txt 5 and ddl3 but button 2 needs to validate txt1, txt 2, chkbx 1, and ddl1. This
form is used to test different functions and the returned values of each button
gives data I need to fill in for other fields.
Using the code behind how can I achieve this with the rad UI
controls and using the rad notification box?
Or
If this is really the bad way to go about it, recommendations
how to better make this page.