Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
156 views
Hello everyone.

I have a need for a custom advanced form for scheduler and found that the current Advanced form is too rigid. I have no need for recurrence, but I need to have a lot of other properties in the form. I tried resources, again, too rigid for my taste. I also tried AdvancedFormTemplate, I didn't like it.

I'd like to know if it's possible for me to have my own form in a RadWindow and upon New Appointment / Edit Appointment, my own RadWindow pops up instead. That way, I can have my own buttons, my own validation, my own properties easily. As I'm new to Scheduler, it'll be of great help if any kind souls could point me in the right direction.

Thank you in advance.
Jonathan
Top achievements
Rank 2
 answered on 12 Mar 2013
9 answers
307 views
I have a radgrid with filters enabled. I want to draw attention to the filters by changing the background color of the textbox if text exists. So my pseudo code would be as follows:

if textbox.text != null
{
textbox.backgroundcolor = red;
}

How do I programmatically target these textbox filters? I have three of them on my RadGrid: one for client name, employee name, and client number. Plus I would also like to lengthen with width of these textbox filters.

Thanks,
Alex
Shinu
Top achievements
Rank 2
 answered on 12 Mar 2013
1 answer
82 views
Hello All,

There is a RadImageEditor in my page and after applying Alpha filter the image is vanishing somewhere and the html tag is only displayed with the exact dimension of the image. This issue is occuring in IE9 only (don't know about previous IE Versions) and working fine in MF,Chrome. Is this a browser comatibility issue?

Thanks,
Ben.
Princy
Top achievements
Rank 2
 answered on 12 Mar 2013
1 answer
107 views
Hello All,

The image in RadImageEditor seems disappearing or hidden after I click the Add Text icon. I am not doing anything in CS, just on clicking the icon, image is missing.

Thanks,
Ben
Princy
Top achievements
Rank 2
 answered on 12 Mar 2013
1 answer
83 views
Within a function I am iterating through the GridDataItems of an instance of the GridDataItemCollection and I need to determine the level within the hierarchy.

How can I determine what level of the hierarchy a GridDataItem or the GridDataItemCollection belongs to?

Thanks
Shinu
Top achievements
Rank 2
 answered on 12 Mar 2013
1 answer
84 views
Hello,

How can we set the font of RadGauge scale text from code behind? I am unable to find any Font property in the visual studio itellisense.

Thank you,
Antony.
Princy
Top achievements
Rank 2
 answered on 12 Mar 2013
1 answer
318 views
I can't show the image from the database

Grid DataSource = LinqSource;

GridBoundColumn:  DataField = "ImgID" DataType : system.int
GridBinaryImageColumn : DataField="Img" DataType: system.string

I get the  img id but image is not diplayed in my grid
Shinu
Top achievements
Rank 2
 answered on 12 Mar 2013
1 answer
172 views
Hi,

I want to know how to display a Radprompt on button click. Please help with sample code.

Thanks,
Ivy.
Princy
Top achievements
Rank 2
 answered on 12 Mar 2013
1 answer
230 views
I am trying to access my radcomboboxes that are in my GridTemplateColumn when the Item command perform insert is fired.
protected void radGridAssetLocationHistory_ItemCommand(object sender, GridCommandEventArgs e)
{
     //Refresh Command Button was pressed
    if (e.CommandName == RadGrid.RebindGridCommandName)
    {
        radGridAssetLocationHistory.Rebind();
    }
    if (e.CommandName == RadGrid.PerformInsertCommandName)
    {
        //Need to access the items to perform insert
    }
}
<telerik:RadGrid ID="radGridAssetLocationHistory" runat="server" Skin="WebBlue" CellSpacing="0" GridLines="None" ShowStatusBar="True"
                    GroupingEnabled="False" OnNeedDataSource="radGridAssetLocationHistory_NeedDataSource" ShowFooter="True" AutoGenerateColumns="False" OnItemCommand="radGridAssetLocationHistory_ItemCommand" OnItemDataBound="radGridAssetLocationHistory_ItemDataBound">
                   <MasterTableView CommandItemDisplay="Top" DataKeyNames="TubularLocationID" InsertItemPageIndexAction="ShowItemOnCurrentPage" InsertItemDisplay="Top"  EditMode="InPlace">
                       <CommandItemSettings AddNewRecordText="Relocate Tubular To New Location" ShowRefreshButton="true"></CommandItemSettings>
                               <Columns>
                                    <telerik:GridEditCommandColumn UniqueName="CommandColumn" />
                                   <telerik:GridBoundColumn AllowFiltering="False" AllowSorting="False" DataField="TubularLocationID" DataType="System.Guid" Display="False" FilterControlAltText="Filter TubularLocationID column" Groupable="False" HeaderText="TubularLocationID" ReadOnly="True" ShowSortIcon="False" UniqueName="TubularLocationID">
                                   </telerik:GridBoundColumn>
                                   <telerik:GridBoundColumn AllowFiltering="False" AllowSorting="False" DataField="TubularID" DataType="System.Guid" Display="False" FilterControlAltText="Filter TubularID column" Groupable="False" HeaderText="TubularID" ReadOnly="True" ShowSortIcon="False" UniqueName="TubularID">
                                   </telerik:GridBoundColumn>
                                   <telerik:GridBoundColumn AllowFiltering="False" AllowSorting="False" DataField="LocationDate" DataType="System.DateTime" FilterControlAltText="Filter LocationDate column" Groupable="False" HeaderText="Location Date" ReadOnly="True" ShowSortIcon="False" UniqueName="LocationDate">
                                   </telerik:GridBoundColumn>
                                   <telerik:GridTemplateColumn DataField="Region.Region1"  HeaderText="Region" UniqueName="Region" Display="true">
                                       <ItemTemplate><%# Eval("Region.Region1") %></ItemTemplate>
                                       <EditItemTemplate>
                                           <telerik:RadComboBox ID="radComboRegions" runat="server" Skin="" OnSelectedIndexChanged="radComboRegions_SelectedIndexChanged" AutoPostBack="true" CssClass="CustomRCB" DropDownWidth="200px" MarkFirstMatch="true" AllowCustomText="false" ></telerik:RadComboBox>
                                       </EditItemTemplate>
                                   </telerik:GridTemplateColumn>
                                    <telerik:GridTemplateColumn DataField="Facilit.Facility1"  HeaderText="Facility" UniqueName="Facility">
                                         <ItemTemplate><%# Eval("Facility.Facility1") %></ItemTemplate>
                                        <EditItemTemplate>
                                           <telerik:RadComboBox ID="radComboFacilities" runat="server" Skin="" CssClass="CustomRCB" OnSelectedIndexChanged="radComboFacilities_SelectedIndexChanged" AutoPostBack="true" DropDownWidth="200px" MarkFirstMatch="true" AllowCustomText="false" ></telerik:RadComboBox>
                                        </EditItemTemplate>
                                   </telerik:GridTemplateColumn>
                                    <telerik:GridTemplateColumn DataField="Region.Region1"  HeaderText="Area" UniqueName="Area">
                                         <ItemTemplate><%# Eval("Area.Area1") %></ItemTemplate>
                                         <EditItemTemplate>
                                           <telerik:RadComboBox ID="radComboAreas" runat="server" Skin="" CssClass="CustomRCB" DropDownWidth="200px" MarkFirstMatch="true" AllowCustomText="false" ></telerik:RadComboBox>
                                         </EditItemTemplate>
                                   </telerik:GridTemplateColumn>
                               </Columns>
                   </MasterTableView>
                   <FilterMenu EnableImageSprites="False"></FilterMenu>
               </telerik:RadGrid>
Brett
Top achievements
Rank 1
 answered on 12 Mar 2013
1 answer
55 views
I need to schedule this rule on the calendar using the Recurrence Rules. Do you guys know how to create this rule and is there sample code to do this?
Kevin
Top achievements
Rank 2
 answered on 11 Mar 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?