|
<
telerik:RadToolTipManager
ID
=
"rttmFLC"
OffsetX
=
"1"
Width
=
"400"
Height
=
"400"
HideEvent
=
"LeaveToolTip"
runat
=
"server"
OnAjaxUpdate
=
"OnAjaxUpdate"
RelativeTo
=
"Element"
Position
=
"MiddleRight"
ContentScrolling
=
"Auto"
>
</
telerik:RadToolTipManager
>
ContentTemplateContainer.Controls collection, as well as adding a user control with an image in it. Both ways, no horizontal scrollbar. I have also tried to set the ToolTipManager ContentScrolling to "Both" instead of "Auto". Again no, horizontal scrollbar. For the time being, I can set the image width to 100%, so that the entire image width is seen in the tooltip. However, this will obviously make it so the image doesn't appear as it actually is, but rather as a "thumbnail" of sorts. Any idea why I can't get the horizontal scrollbar to show up?
<
telerik:GridTemplateColumn
UniqueName
=
"ExamplePriceArea"
ReadOnly
=
"True"
HeaderText
=
"ExamplePrice"
>
<
ItemTemplate
>
<
asp:Label
ID
=
"PriceLabel"
runat
=
"server"
Text='<%# Eval("Price", "{0:C}") %>'></
asp:Label
>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
getCellByColumnUniqueName fails because the cell doesn't exist.
surely this is a fairly common requirement.
5. In the debugger on the client, I can see that the width of the asp:checkbox is set to 0. I tried manually changing the width in the debugger - it seemed to work but when I rechecked the width, it was still 0.
The HTML sent to the browser for the two columns is the following:
<
td
style
=
"width:80px;"
>
<
input
id
=
"RadGrid1_ctl00_ctl04_ctl00"
type
=
"checkbox"
name
=
"RadGrid1$ctl00$ctl04$ctl00"
onclick
=
"SelectDeselectRow(0, this);"
/>
</
td
>
<
td
style
=
"width:80px;"
>
<
span
style
=
"display:inline-block;width:50px;"
>
<
input
id
=
"RadGrid1_ctl00_ctl04_chkSelected_2"
type
=
"checkbox"
name
=
"RadGrid1$ctl00$ctl04$chkSelected_2"
/>
</
span
>
<
input
name
=
"RadGrid1$ctl00$ctl04$txtSelected_2"
type
=
"text"
value
=
"1"
id
=
"RadGrid1_ctl00_ctl04_txtSelected_2"
onclick
=
"SelectDeselectRow_2(0);"
style
=
"width:30px;"
/>
</
td
>
The best idea I have on what is happening is that there a script (generated by the RadGrid or by ASP.Net) that runs after the page is loaded that sets the width to 0, causing the checkbox to not be visible. And that this script only runs in IE8. I have looked at the script at the end of the page (which I believe is where the registered scripts go) and do not see anything that looks suspicious.
Anyone have any ideas on why the checkboxes do not display?
Thanks,
John
Hi,
I am using grid inside combobox. Grid has the grouping and the pager. The scenario is when user selects the item of the group the selected item value is set, the combobox is collapsed, and the user is redirected to the specific places. However, when the user clicks on the group header or anywhere on the pager, the action must be completely ignored. Currently the combobox is collapsed with the empty selected value. Could you please help me to achieve the desire behavior?
Thank you,
Tatiana
P.S. I am using v. 2009 Q3
function
onAppointmentMoveEnd(sender, args) {
var
start = args.get_targetSlot().get_startTime();
var
end =
new
Date(start.getTime() + args.get_appointment().get_duration());
var
slotElement = $telerik.$(args.get_targetSlot().get_domElement());
if
(slotElement.is(
".Disabled"
) || slotElement.parent().is(
".Disabled"
)) {
// Prevent appointment move to disabled timeslots.
alert(
"This venue is not available in this time period."
);
args.set_cancel(
true
);
}
warnIfOccupied(start, end, sender, args);
}
function
onAppointmentResizeEnd(sender, args) {
var
start = args.get_appointment().get_start();
var
end = args.get_targetSlot().get_endTime();
warnIfOccupied(start, end, sender, args);
var
slotElement = $telerik.$(args.get_targetSlot().get_domElement());
if
(slotElement.is(
".Disabled"
) || slotElement.parent().is(
".Disabled"
)) {
// Prevent appointment move to disabled timeslots.
alert(
"This venue is not available in this time period."
);
args.set_cancel(
true
);
}
}