Hello
I somehow can't find a way to programmatically set selected values of RadMultiSelect when page opening on the server.
Can you help me?
Thank you.
Hello,
I am using HeaderContextMenu in my Grid. I am using it together with GlobalRosources.
I am also using filterlist.
Everything works as expected. Just the Search and "Check All" checkbox doesnt get translated.
I managed to translate Search using "HeaderContextMenu_ItemCreated", but couldn't find a way to do it for "check all"
Regards
Hi,
I have a problem with RadScheduler when running on production server.
The DayView and the fill of the appointment is black and not the color defined by design.
In WeekView and MonthView the Friday cells are even black.
So no text is visible.
Running on my development machine everything is fine.
Now I have installed VS on the production server. Running the site as debug everything is well displayed.
Deploying the app using folder profile: DayView etc is black...
Do you have a tip to fix this problem?
Regards
Hardy
Hello Telerik-Team,
I am using RadDiagram to move shapes on a picture. My issue is if I move shapes, i can't place it on exact position like I want.
Is there a possibility to move the shapes finer?
Regards
<label class="lbl"><%= Resources.Resource.frmDate%></label>
I am getting below error when i call a global resource file in my page which has a radgrid.
The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
Hi, I am trying to bind into a FormTemplate for editing from a GridBoundColumn 'value' where on ItemDataBound I pulled the information from multiple other columns in my Data Table (value_int, value_string, value_bit). For each row only one column would have information and the rest are null.
I haven't been able to figure out how to populate the textbox from 'value' let alone eventually write this back. Another thing I have tried other than (unsuccessfully) getting the data from the 'value' column in my grid was to use bind() for each column in the data table as such:
<
asp:TextBox
ID
=
"txtBoxValue"
runat
=
"server"
Text='<%# Bind("Value_string") ?? Bind("value_decimal18_2") ?? Bind("value_bit") %>'></
asp:TextBox
>
But this only binds whatever value_bit shows as either true/false or a space as it doesn't seem to be a null. code behind to bind the 'value' column is the following:
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridDataItem && e.Item != null)
{
GridDataItem item = (GridDataItem)e.Item;
DataRowView drv = (DataRowView)e.Item.DataItem;
if (drv["value_type"] != null)
{
if ((string)drv["value_type"] == "value_string")
{
item["Value"].Text = drv["value_string"].ToString();
}
else if ((string)drv["value_type"] == "value_bigint")
{
item["Value"].Text = drv["value_bigint"].ToString();
}
else if ((string)drv["value_type"] == "value_decimal18_2")
{
item["Value"].Text = drv["value_decimal18_2"].ToString();
}
else if ((string)drv["value_type"] == "value_bit")
{
item["Value"].Text = drv["value_bit"].ToString();
}
}
}