Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
115 views
Hi,

I have to place a seperator in grdi commnads, if it it showing multiple command in a column(I'm using GridEditDataItem),

Eg: Update   Cancel(Now it dsiplays as)
      Update | Cancel (Wnat to display as)

Thanks
Satheesh
Princy
Top achievements
Rank 2
 answered on 27 Jun 2008
5 answers
163 views
I went through all the documentation that I could find.
The text that we get from RadEditor gets parsed. For instance
{Content:Name} indicates a specific piece of Content that gets included on the page.
We would like to expand RadEditor to provide the following functionality:
A radgrid with filtering comes up, they can select the Content they want. And that places {Content:Name} at the desired location. I have been unable to get this to work at all. Where can I go from here to find additional help?
Rumen
Telerik team
 answered on 27 Jun 2008
1 answer
110 views
Hi,

I have a rad Editor in my page...In radEditor tool, there is a font size dropdown, which is always displayed 12pt.
I want to set it to default 14.5pt

Can I do this?

Regards
Arti Khachariya.
Rumen
Telerik team
 answered on 27 Jun 2008
2 answers
134 views
A user belongs to a group which has "Manage Hierarchy" + "Approve" permissions to a site (site x) deep down in the site structure. The user also belongs to Visitors and have Read rights everywhere else.
The user uses the Link Manager to add a link to a page in "site x", but when browsing to a site further up in the site structure where the user only has Read permissions a blank page with "403 FORBIDDEN" is displayed.

My guess is that the users is missing permissions somewhere in the filesystem but I haven't manage to found out where. Help appreciated!
Thanks, Marcus
domack
Top achievements
Rank 1
 answered on 27 Jun 2008
1 answer
366 views
I have a situation where I need to have only select dates in a month available for selection in the DatePicker control. For example a user has entries in a tracker of some sort and they want to see their entries by selecting a date on a calendar dropdown (RadDatePicker) but they only want the days that actually have entries made on them selectable and highlighted in the control. Any ideas how to make that happen?
Sebastian
Telerik team
 answered on 27 Jun 2008
5 answers
254 views
Hi,

I have found a bug with the new version of the rad editor. If i assign the toolsfile in the codefile rather than on the page the editors will populate the css dropdownlist with all the css classes used by the page. This happens even though i have added an external css file which has no classes.

On the page:

<telerik:RadEditor
    Id="HtmlEditor"
    Runat="server"
    Enabled="true"
    EnableResize="false"
    StripFormattingOptions="NoneSupressCleanMessage">
    <CssFiles>
        <telerik:EditorCssFile Value="~/css/dummy.css" />
    </CssFiles>
</telerik:RadEditor>

In the codefile:

HtmlEditor.EditModes = Telerik.Web.UI.EditModes.Design | Telerik.Web.UI.EditModes.Html;

Any help to fix this problem would be greatly appreciated as its driving me bonkers!

Lee
Tervel
Telerik team
 answered on 27 Jun 2008
1 answer
241 views
I have a page that is built from a master page. This master page has the RadWindow instance in it. This is a login/registration page. On the code behind, I process that data and then need to have the main page redirect to the item that the user was loging in or registering for.

I try to access the page that is built from the master page that has the RadWindow in it by the following code:

This is similiar to the injection for closing the window, but the difference is that I need to inject in the main page, not the popup window.

RadWindow rwdRegistration = (RadWindow)Page.Parent.Page.Master.FindControl("RadWindow1"); 
             
Label lblInjectRedirect = (Label)rwdRegistration.Parent.FindControl("lblInjectRedirect"); 
 

Has anyone every tried to access a control from the pop up window in the main or parent window? If so can you please explain or show the code snippet to do this?

Thanks,
Patrick
Georgi Tunev
Telerik team
 answered on 27 Jun 2008
1 answer
83 views
I've looked around and can't find anyone else having this issue but maybe some here can help....

I've got a simple RadGrid using a LinqDataSource, have turned on pagin and column filtering. Paging and filtering work great untill I filter on the "Enabled" column.  The "Enabled" column is a boolean value that, suprizingly enough, indicates wether this particular item is enabled or disabled.  Filtering on this column would be a really nice feature for the user. Unfortunatly when I check the box and select "EqualTo" as my filter option, the result is limited to the first page of data.  Without the filter I have 3 pages (page size = 35) of data and only 1 item is disabled.  After the filter is applied, it will only show me the items on that page that are enabled.  So the filtering part works but I can no longer get to any of the other data on the other pages....

Any Ideas?
Yavor
Telerik team
 answered on 27 Jun 2008
1 answer
88 views
Hi telerik,

Is it possible to place the labels of the X axix on both the top and bottom of the r.a.d.chart?

Daniel
Giuseppe
Telerik team
 answered on 27 Jun 2008
3 answers
137 views
I'm using the following code to retrieve a value from a grid column and it keeps returning the "&nbsp ;" instead of the value in the column.  I've used this code before with the Q3 2007 version so I don't know if it will work for the AJAX version.  The dropdown is created and is loaded properly.  All I need to do is set the dropdown selected value to what is in the record.  The column "TimeCodeID" is Display=false.  I've tried Display=true with the same problem. Any idea what I can do to get the value of the column?  Thank you.

<

telerik:GridBoundColumn DataField="TimeCodeID" HeaderText="Time Code ID" UniqueName="TimeCodeID" DataType="System.Int32" Display="False">

</telerik:GridBoundColumn>



protected

void RadGridEdit_ItemCreated(object sender, Telerik.Web.UI.GridItemEventArgs e)

{

if ((e.Item is GridEditableItem) && (e.Item.IsInEditMode))

{

GridEditableItem editItem = e.Item as GridEditableItem;

DropDownList ddlTimeCode = (DropDownList)editItem["TimeCode"].FindControl("ddlTimeCode");

ddlTimeCode.Items.Clear();
ddlTimeCode.DataSource =
tblTimeCode.GetCache(DBConnection);
ddlTimeCode.DataTextField =
"TimeCode";
ddlTimeCode.DataValueField =
"ID";
ddlTimeCode.DataBind();

if (e.Item.OwnerTableView.IsItemInserted)

{

}

else

{

GridEditableItem myItem = e.Item as GridEditableItem;

//This line returns &nbsp instead of the value in the column
string strTimeCodeID = myItem["TimeCodeID"].Text;

//set dropdown to show what was selected

ddlTimeCode.SelectedValue = strTimeCodeID;

}

}

Shinu
Top achievements
Rank 2
 answered on 27 Jun 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?