Telerik Forums
UI for ASP.NET AJAX Forum
16 answers
222 views
Hi there,

I'm having an issue with the width of my editor's dropdownlists.  By default, they are getting cut off so that the name of the dropdown is not fully displayed.  All my attempts to apply CSS hacks to lengthen the width have failed.  Please see the image below for an example.

http://envnet.ucdavis.edu/images/uploads/ddls.gif

Secondly: I realize this is getting picky, but is it possible to add a <color separator="true" /> or another indicator that would restrict the number of columns in the color dialogue? The color palette that I'm working with is 8 columns wide.

http://envnet.ucdavis.edu/images/uploads/colors.gif

Thanks!

Rumen
Telerik team
 answered on 26 Jun 2009
1 answer
106 views
Hi,

I am in the process of migrating our application from the Classic controls to the AJAX controls and I've noticed that the Update and Cancel buttons aren't present in the new controls.  I was wondering if it is possible to put these buttons back somehow in order to keep our application looking as similar as possible as it was previous to the upgrade to the new controls.

Thanks in advance,
Ben
Rumen
Telerik team
 answered on 26 Jun 2009
3 answers
124 views
I would like to build an intranet web site with a similar look and feel to the Visual Studio "Start Page". It's the anoying page with Microsoft headlines that opens every time you run Visual Studio 2005 or 2008. I prefer the 2005 look but 2008 works. I recently spent hours scouring the web looking for a good layout ideas and there it was right infront of me all the time!

Are there any Telerik controls that can produce a similar look and feel? I would like the boxes and headers to use pre built Telerik skins. I wish there was a Rad panel or Rad group box with lots of prettyness options for producing this look. I have looked at the RadDock and Rad Windows controls. They seem to be the closest examples. Does anyone have any suggestions???

Thanks,
Greg
Ivo
Telerik team
 answered on 26 Jun 2009
5 answers
233 views
I can't find any documentation on how to use LinqDataSource with WhereParameters on a GridDropdownColumn.

The reason is, I have a dropdown column in a DetailTable which I want to be filtered by the parent table. Since there is no ID on a DetailTable I can't use ControlParameter.  I tried using just Parameter but it didn't seem to work, the parent DataKeyValues don't get passed to the LinqDataSource, I believe. 

I can post sample code if that would help...  Thanks.
Kevin
Top achievements
Rank 1
 answered on 26 Jun 2009
3 answers
166 views
I am getting the following error message when I am in design mode in Visual Studio 2008:

System.IO.FileNotFoundException: Could not load file or assembly 'Telerik.Web.UI, Version = 2009.1.402.35, Culture=neutrual,PublicKeyToken=121fae78165ba3d4' or one of its dependencies.  The system cannot find the file specified.  File name: 'Telerik.Web.UI, Version=2009.1.402.35,Culture=neutral,PublicKeyToken=121fae78165ba3d4' at Telerik.Web.Design.RadGridDesigner.GetDesignTimeHtml(DesignerRegionCollection regions) at System.Web.UI.Design.ControlDesigner.GetDesignTimeHtml(DesignerRegionCollection regions) at System.Web.UI.Design.ControlDesigner.GetViewRendering(ControlDesigner designer)

This is running on a 64 bit Windows Vista. This is a new installation of asp.net ajax.

Thanks,

Billy Jacobs
Pavlina
Telerik team
 answered on 26 Jun 2009
3 answers
311 views
hi
i am using telerik ajax update panel.
on button click the progress bar or the  loading image is of the size  of the table cell in which the buttn is .
for example i have following code.

<table>
<tr>
<td>
<asp:button id="btnsearch" runat="server" />
</td>
<td>
<asp:button id="btnNewUser" runat="server" />
</td>
</tr>
</table>
this table contains so many fileds ,i m not going to write all those.
now the problem appears when i use the following code

<

 

telerik:RadAjaxLoadingPanel InitialDelayTime="0" ID="panLoading" runat="server" EnableSkinTransparency="true" BackgroundPosition="Center"

 

 

Transparency="20" BackColor="#E0E0E0">

 

 

<table style="height:100%; width:100%; z-index:1024">

 

 

<tr >

 

 

<td>

 

 

<asp:Image ID="Image1" runat="server" AlternateText="Loading..." BorderWidth="0px"

 

 

ImageUrl="Images/WebResource.gif"></asp:Image>

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

</telerik:RadAjaxLoadingPanel>


with the button

 

<

 

td colspan="2" align="left">

 

 

 

 

 

<br />

 

 

 

 

 

<telerik:RadAjaxPanel ID="panNewUser" runat="server" LoadingPanelID="panLoadNewUserPage">

 

 

 

 

 

<asp:Button ID="btnNewUser" runat="server" Text="New User" />

 

 

 

 

 

</telerik:RadAjaxPanel>

 

 

 

 

 

</td>

 



then the image appears only for that cell in which the button is.
please solve my problem.

Thanks in advance.

Daniel
Telerik team
 answered on 26 Jun 2009
4 answers
57 views
Is there any webinar or documentation on the building of the telerik site. There are many features on this site I like, but cannot figure out how to ackomplish in sitefinity.  I need to implement something like the ajax feature on this sites Support page (http://www.telerik.com/support.aspx ) The sliding list under find Support about...

I have a site that will be hundreds of pages with multiple sub Category Pages. I'm  looking for a way to automatically navigate the subcats. I was thinking of building 2 navigation elements. the Main Nav. then a Sub category nav that will only display the items in that category automatically. Does anyone have any suggestions?

Also, what are some good training resources for SiteFinity?  I've looked at the Webinars however a need more. I can't seem to figure out how to use all the properties for controls. They sems pretty vague.

Thanks,

Brian
Kalina
Telerik team
 answered on 26 Jun 2009
4 answers
507 views
I admit I am new to this component set, but here's what I am running into. I am using Visual Studio 2008.

I have my dataset and my grid, no problem there. I have selection allowed on the grid, and that works correctly. After some research here, I have the following code:

<script type="text/javascript">
 function RowSelected(sender, eventArgs)
 {
   var label = window.document.getElementById("TextBox1");
   var dataItem = $get(eventArgs.get_id());
   var grid = sender;
   var MasterTable = grid.get_masterTableView();
   var row = MasterTable.get_dataItems()[eventArgs.get_itemIndexHierarchical()];
   var cell = MasterTable.getCellByColumnUniqueName(row, "transaction_number");
   label.Value = cell.innerHTML;
   alert("Cell Value: " + label.Value);

  //here cell.innerHTML holds the value of the cell
 }

</script>

This brings up the transaction number in an alert box. But how in the world do I get this and other cell values back to where the VB.Net code can use them?

All help appreciated. I am well and thoroughly stuck.





Daniel
Telerik team
 answered on 26 Jun 2009
1 answer
75 views
All,
        I want to append additional information in the subject line of the scheduler. So what I was trying to do is say "Select Subject + User.LastName +',' + User.FirstName  + User.PatId As Details From Appointment and the User table" and then was trying to set the subject field to the details column. However when I try to update it it throws an error ? Does anyone know of a better way of doing this ?

Thanks,
Aditya
Peter
Telerik team
 answered on 26 Jun 2009
3 answers
120 views

Hi,

I have created a usercontrol with rad controls to dynamically create menus.
In My home page i have placed the user control and on clicking the menus inside the usercontrol, i would have the display the approprieate aspx page in the RadPane in the home page.
Pls. Suggest me how to do this. Share some code samples if possible

Thanks

Paul
Telerik team
 answered on 26 Jun 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?