Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
96 views
I would use a RadComboBox to edit a field within a formtemplate in RadGrid, but it returns me error if I enable EnableAutomaticLoadOnDemand property. Check the documentation that is not possible to use this feature AutomaticLoadOnDemand in this case.
The curious thing is that it works if I use the EditFormType=autogenerated(adding a DropDown column on the grid and setting the property EnableAutomaticLoadOnDemand = true).
Is there any solution for use a RadComboBox inside a formtemplate? or add a reference to the DropDown column in the grid template?
Cat Cheshire
Top achievements
Rank 1
 answered on 27 Jun 2011
4 answers
146 views
Hi guys

As pe the example at http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultvb.aspx, I'm trying to hide two of the four tabs when you use 'Table Wizard'.

I'd like to keep Designer and Accessible Table but omit TableProperties and CellProperties - I can hide the two tabs but when clicking on the 'Accessible' tab, I get the content from the 'Table Properties' tab instead.

How can I hide the two tabs AND ensure the remaining two tabs behave as expected? Is it because the second tab is always expected to be the Table Properties one?

I had used this code in TableWizad.ascx:

<telerik:RadTabStrip ShowBaseline="true" ID="TableWizardTab" runat="server" SelectedIndex="0" MultiPageID="dialogMultiPage">
    <Tabs>
        <telerik:RadTab Text="Table Design" Value="Tab1HeaderText">
        </telerik:RadTab>
        <telerik:RadTab Text="Table Properties"  Value="Tab2HeaderText">
        </telerik:RadTab>
        <telerik:RadTab Text="Cell Properties" Visible="false" Value="Tab3HeaderText">
        </telerik:RadTab>
        <telerik:RadTab Text="Accessibility" Value="Tab4HeaderText">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>

Any help would be greatly appreciated.

Regards

Neil


HWNeil
Top achievements
Rank 1
 answered on 27 Jun 2011
2 answers
85 views
Hi,

We are using RadEditor in our application. if we set the style as "align:right" then it automatically convert in to "float:right" and this happens while we switch from HTML mode to Design mode.

The issue is, our application sends bulk mails and email client such Outllook etc.. are not understanding the "float" attribute and alignment is not happening properly.

It will be great if you can give the solution as soon as possible since application is live.

Thanks
Venkat
Venkatakrishna
Top achievements
Rank 1
 answered on 27 Jun 2011
1 answer
144 views
Hi
I am trying to use the RadMenu control similar to the MegraDropDown example (http://demos.telerik.com/aspnet-ajax/menu/examples/megadropdown/defaultcs.aspx). How can i use the sitemap as a datasource for this example instead of hard coding the node values?  If i use sitemap as datasource, It's simply binding as normal parent child mapping instead i wanted to exactly the way mega dropdown looks in the example, but the data has to come from the site map. Can somebody post a sample data source for this mega dropdown?  Thank you!

-Jega
Dimitar Terziev
Telerik team
 answered on 27 Jun 2011
3 answers
751 views
Hi,
I want to set the default name for saving export excel file. Currently the file name is RadGridExport.xls. Please help. Thanks.
Jayesh Goyani
Top achievements
Rank 2
 answered on 27 Jun 2011
1 answer
127 views
Hi there.

I have a grid where I am binding a data table. The first column is a check box. The problem is that it is read only on the grid.

What I want is a column with a check box that can be checked and unchecked. Also i want the same with its header. When the header check box is ticked, all the other check boxes should be ticked as well.

This is what i have right now

<telerik:RadGrid ID="RadGrid1" runat="server" GridLines="None" AutoGenerateColumns="true">
   <MasterTableView>
        <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings>
 
        <RowIndicatorColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </RowIndicatorColumn>
 
        <ExpandCollapseColumn>
            <HeaderStyle Width="20px"></HeaderStyle>
        </ExpandCollapseColumn>
        <Columns>
        </Columns>
    </MasterTableView>
</telerik:RadGrid>

System.Data.DataTable dt = new System.Data.DataTable();
 
System.Data.DataColumn column0 = new System.Data.DataColumn("IsEnabled", typeof(bool));
System.Data.DataColumn column1 = new System.Data.DataColumn("Rule", typeof(string));
System.Data.DataColumn column2 = new System.Data.DataColumn("Status", typeof(string));
System.Data.DataColumn column3 = new System.Data.DataColumn("Priority", typeof(string));
System.Data.DataColumn column4 = new System.Data.DataColumn("UpImg", typeof(string));
System.Data.DataColumn column5 = new System.Data.DataColumn("DownImg", typeof(string));
 
dt.Columns.Add(column0);
dt.Columns.Add(column1);
dt.Columns.Add(column2);
dt.Columns.Add(column3);
dt.Columns.Add(column4);
dt.Columns.Add(column5);
 
System.Data.DataRow row = dt.NewRow();
 
row[column0] = true;
row[column1] = "test";
row[column2] = "test";
row[column3] = "0";
row[column4] = "test";
row[column5] = "test";
 
dt.Rows.Add(row);
 
RadGrid1.DataSource = dt;
RadGrid1.DataBind();

Thanks in advance
Princy
Top achievements
Rank 2
 answered on 27 Jun 2011
2 answers
262 views
Hi Team,
 We are using Rad Combo boxes in my screen, I need to bind 50,000 records into a a combo box2 depending on the value selected in a combo box1. while binding Page is getting hanged. We are using Stored Procedure to bind the values into combo box2. Please give any suggestion on this ASAP.





Thanks
Alexis A

Cat Cheshire
Top achievements
Rank 1
 answered on 27 Jun 2011
9 answers
282 views
HI,
  The radtabstrip skin is not showing at all when rendered in IE7. It works ok in firefox.

Any advise how to make it work?

Thanks,
Sayak
Dimitar Terziev
Telerik team
 answered on 27 Jun 2011
2 answers
135 views

I have successfully managed to use the TelerikModalOverlay class to put an image behind a modal pop-up window, but I have a small issue in that the background image is not centered in the background and starts from the top-left of the browser. Below is the CSS I am using currently:

.TelerikModalOverlay
{
    background-position: center top !important;
    background: url(images/backgroundmain.jpg) !important;
    background-repeat: no-repeat;
    filter: alpha(opacity=99) !important;/*for IE 5.5+*/
    opacity: .99 !important;/*for FF 2x, Opera 9x*/
    -moz-opacity: .99 !important;/*for FF 1x*/  
    }

Is there any way to force the background image to be centered?

Thanks

Simon
Simon Maystre
Top achievements
Rank 1
 answered on 27 Jun 2011
2 answers
92 views
... on a per appointment basis.

That is to say, when I'm handling the AppointmentDataBound event, I do some tests to check whether, for that appointment, the user has sufficient rights to edit or delete an appointment and I set up the context menu accordingly. I'd like, when the user has insufficient rights to delete the appointment, to hide the delete button too.

So far all I've found are suggestions on how to hide it for all appointments.

Any suggestions?

-- 
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 27 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?