<
a href="#" onclick="openWindowEdit('<%# DataBinder.Eval(Container.DataItem, "VersionId") %>'); return false;"
id="lnkPWindow" style="font-weight:bold;z-index: 104; left: 237px; position: absolute; top: 90px">[VIEW/EDIT]</a>
this is done on link button on page....and samething i want in grid.
or some other way to achieve this type of functionality in Grid.
waiting for your reply.
Me
.LoadMyUserControl(
"~/controls/Log.ascx"
, Panel1)
Dim
MessageScript
As
String
=
"$('#modal-interact').modal('toggle');"
ScriptManager.RegisterStartupScript(
Me
,
GetType
(Page),
"UniqueID1"
, MessageScript,
True
)
<script type=
"text/javascript"
>
function confirmthis()
{
$(
'#modal-interact').modal('hide');
return true;
}
</script>
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"btnTest"
EventName
=
"btnTest_Click"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadTextBox1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManager
>
Private Sub btnTest_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnTest.Click
End Sub
<
telerik:RadTextBox
ID
=
"RadTextBox1"
runat
=
"server"
TabIndex
=
"1"
EmptyMessage
=
"Empty"
>
</
telerik:RadTextBox
>
<
telerik:RadButton
ID
=
"btnTest"
runat
=
"server"
AutoPostBack
=
"true"
Text
=
"Click"
>
</
telerik:RadButton
>
Hello,
I have a RadGrid (v2009.01.0527.20) with Height=”100%” and Width=”100” that is inside a RadSplitter pane and set to automatically resize with the RadSplitter pane resize. This is based on the demo code from:
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandsplitterresizing/defaultcs.aspx?product=grid.
The columns are NOT autogenerated, they are GridBoundColumn and a few of my own custom columns that inherits GridBoundColumn and are used for custom filtering.
All this is working fine so far.
My problem is that some of the text column contents are too long to fit in the column and do not wrap but instead bleed over into the next adjacent column. I have tried adding ClientSettings-Resizing-ClipCellContentOnResize="true" but that does not work, the text still bleeds over into the next adjacent column.
How do I get the cell contents to wrap when it is too long to fit in column?
Thanks,
Randall Price