| Response.CacheControl = "private"; |
| Response.Expires = -1; |
| Response.AddHeader("pragma", "no-cache"); |
We have been using your Grid for sometime now.
At First we used you RadGrid and added a Resizing Property and it works well
<Resizing AllowColumnResize="true" AllowRowResize="false" EnableRealTimeResize="true" ResizeGridOnColumnResize="false">
When we resize the column the grid does not resize(since ResizeGridOnColumnResize ='false')
and this is what we needed.
Then we tried using the Scrolling property.
<Scrolling AllowScroll="true" UseStaticHeaders="true" />
Our Problem is that when we resize a certain Column the whole grid get resized.
When a certain column is resize to the left, the grid does not resize but the column adjust and we can see that at the rightside of the grid that there are white spaces with no grid lines, the last column adjust and leave this white spaces.
When we adjust a column to the right, the grid resizes itself
I want to do two options:
a) when i adjust the grid column, the grid will not resize then the column will resize to the grids width(like the grid before i add scrolling)
b) when i adjust the grid column, the grid is fixed in size the a horizontal scroll will appear and the column will be adjusted
Hope you can help.
Thanks
| telerik:RadTreeView Skin="Web20" runat="server" ID="radTVBranches" CheckBoxes="true" |
| OnClientNodeChecked="AfterCheck"> |
| my ActerCheck function is written as this: |
| Format Code Block( |
| function |
| AfterCheck(sender, eventArgs) ( |
| var childNodes = eventArgs.get_node().get_nodes(); //get all the child nodes |
| var isChecked = eventArgs.get_node().get_checked(); //get all nodes that are checked |
| var node = eventArgs.get_node(); // get the parent node |
| // uncheck the parent if any child is unchecked. |
| if (!node.get_checked()) { |
| while (node.get_parent().set_checked != null) { |
| node.get_parent().set_checked( |
| false); |
| nodenode = node.get_parent(); |
| } |
| } |
| UpdateAll(childNodes, isChecked, node); |
| //update all nodes after check |
| } |
| ) |
Can you provide or point me to an example of adding a RadToolTip to a RadGrid:GridImageColumn.
The sample code I have seen finds the target control using e.Item.FindControl to find the control by Id name but I don’t know how to find the GridImageColumn since it doesn’t have an Id attribute.
Thanks,
-Chip