Telerik Forums
UI for ASP.NET AJAX Forum
17 answers
276 views
Hi everyone, i have tried to create a web site asp.net including a radgrid (client side filtering), where databinding has made through a WCF service.
Project include a WcfService and the method GetDataAndCount of this WcfService is called for databinding by .aspx page with:  

<DataBinding Location="TelerikWcfService.svc" SelectMethod="GetDataAndCount"  SortParameterType="Linq" FilterParameterType="Linq"/>

I think I've correctly set up the web config with svc service data bindings.
Unfortunately, it doesn't work: on pageload, response is always 415 (Unsupported media type).

Any suggestions to solve the problem?
Thanks in advance

Regards
Vittorio
Viktor Tachev
Telerik team
 answered on 27 Mar 2014
2 answers
275 views
Hi,

I've found several other similar threads, but have not been able to get the color behind the buttons to change.
Check out the attached screenshot to see what I'm trying to accomplish.

I've tried:

div.RadToolBar .rtbOuter
 {
     background-color: white;
 }

but that affects the buttons as well.

I've also tried:

.rtbWrap
{
    background: white;
}

but with the same results.

Any suggestions?

Thanks in advance.

Jim
jlj30
Top achievements
Rank 2
 answered on 27 Mar 2014
1 answer
322 views
Hi,

I'm new to telerik products and fairly new to ASP.net AJAX.  I have a panel that displays textbook information and allows the user to Edit or Delete a book from the list.  When the user selects Edit, the window for that record expands and the user can change the status of the book.  They then hit either Update or Cancel.  When the user hits Update, it saves the new status and the display goes back to the form before the user hit Edit.

What I want to do is perform additional updates on other tables when the user updates the status.  I need to know how I can set the panel to perform the additional updates - the updates are different for the different statuses.

Thanks in advance,
Sharon

​ <asp:Panel runat="server" ID="pnlBooks" Visible="false">
<telerik:RadGrid ID="rgBooks" runat="server"
AllowFilteringByColumn="True"
AllowPaging="True"
AllowSorting="True"
AutoGenerateColumns="False"
PageSize="20"
DataSourceID="ldsBooks"
AllowAutomaticUpdates="true"
AllowAutomaticDeletes="false"
>
<MasterTableView ShowFooter="False" DataKeyNames="barcode" ClientDataKeyNames="barcode"
DataSourceID="ldsBooks" EditMode="EditForms" HeaderStyle-Font-Bold="true">
<Columns>
<telerik:GridBoundColumn DataField="barcode" HeaderText="Barcode" UniqueName="barcode" ReadOnly="true" Visible="true" />
<telerik:GridBoundColumn DataField="tbtCatalog.isbn" HeaderText="ISBN" UniqueName="isbn" ReadOnly="true" Visible="true" />
<telerik:GridBoundColumn DataField="entityID" HeaderText="School" UniqueName="entityID" ReadOnly="true" Visible="false" />
<telerik:GridDropDownColumn DataField="entityID" DataSourceID="ldsSchools"
HeaderText="School" ListTextField="SCHABBRV" ListValueField="SchoolNum"
ReadOnly="true" SortExpression="INFO_SCH.SCHABBRV" UniqueName="SchAbbrv"
Visible="true">
</telerik:GridDropDownColumn>
<telerik:GridBoundColumn DataField="room" HeaderText="Room/Dept" UniqueName="room" ReadOnly="true" Visible="true" />
<telerik:GridBoundColumn DataField="tbtCatalog.Title" HeaderText="Title" UniqueName="title" ReadOnly="true" Visible="true" />
<telerik:GridBoundColumn DataField="tbtStatus.StatusName" HeaderText="Current Status" UniqueName="StatusName" ReadOnly="true" Visible="true" />
<telerik:GridBoundColumn DataField="StatusCode" UniqueName="StatusCode" ReadOnly="true" Visible="false" />
<telerik:GridDropDownColumn DataField="StatusCode" DataSourceID="ldsStatus"
HeaderText="Status" ListTextField="StatusName" ListValueField="StatusID"
ReadOnly="false" SortExpression="tbtStatus.StatusName" UniqueName="StatusID"
Visible="false" >
</telerik:GridDropDownColumn>
<telerik:GridEditCommandColumn UniqueName="EditCommandColumn" />
<telerik:GridButtonColumn CommandName="Delete" Text="Delete" UniqueName="Delete" ConfirmText="Are you sure you want to delete this book?" ></telerik:GridButtonColumn>

</Columns>
</MasterTableView>
</telerik:RadGrid>
</asp:Panel>
Maria Ilieva
Telerik team
 answered on 27 Mar 2014
1 answer
113 views
Hi,

can a timeout be set for Telerik.Web.UI.GridItem tooltip?
Eyup
Telerik team
 answered on 27 Mar 2014
1 answer
405 views

I have multiple radgrids on a single page. I have roughly 15 columns in one. Only 3 of the columns are set to display, however when running on my local machine only 2 of them display. In the developer tools of IE9 it shows it is being set as inline display: none. I have not set this and Have set it to display = true in my code with no luck. this is also happening on a two column grid where it is only displaying a single column in the grid. I am unsure of the issue and what is creating this. I have tried running IE in compatibility mode and have also tried different versions of IE.

I have to use IE 9 for this project.

RadGrid Code

<telerik:RadGrid ID="gridSRoster" OnItemDataBound="gridSRoster_ItemDataBound" OnDataBound="gridSRoster_DataBound" runat="server" Skin="Web20" CssClass="dvGridWrapper" Visible="false" BorderStyle="None" OnNeedDataSource="gridSRoster_NeedDataSource">
            <MasterTableView EditMode="InPlace" DataKeyNames="PERSID" AutoGenerateColumns="false" CssClass="autoShrink" Font-Size="10" BorderStyle="Solid">
                <HeaderStyle Font-Bold="true" HorizontalAlign="Center" />
                <ItemStyle HorizontalAlign="Center" Height="15" />
                <AlternatingItemStyle BackColor="#B0C4DE" HorizontalAlign="Center" />
                <Columns>
                    <telerik:GridBoundColumn DataField="PERSID" UniqueName="PERSID" Display="false"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="FNAME" UniqueName="FNAME" Display="true" ItemStyle-HorizontalAlign="Left" HeaderText="Full Name"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="GRADE" UniqueName="GRADE" HeaderText="GRADE"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="UPC" UniqueName="UPC" Display="false"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="PARA" UniqueName="PARA" Display="false"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="ATCH_CODE" UniqueName="ATCH_CODE" Display="false"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="ASGN_UIC" UniqueName="ASGN_UIC" Display="false"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="ATCH_UIC" UniqueName="ATCH_UIC" Display="false"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="ATTACHED" UniqueName="ATTACHED" Display="false" HeaderText="atch"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="DETACHED" UniqueName="DETACHED" Display="false" HeaderText="deta"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="TECHCODE" UniqueName="TECHCODE" Display="false" HeaderText="tech"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="AGRCODE" UniqueName="AGRCODE" Display="false" HeaderText="agr"></telerik:GridBoundColumn>
                    <telerik:GridBoundColumn DataField="intRosterID" UniqueName="intRosterID" Display="false"></telerik:GridBoundColumn>
                    <telerik:GridTemplateColumn Display="true" Visible="true" UniqueName="Hide">
                        <ItemTemplate>
                            <asp:LinkButton OnClientClick="return hide();" ID="btnNotIncluded" OnCommand="btnNotIncluded_Command" CommandArgument="<%#Container.ItemIndex %>" runat="server" Text="Hide" Visible="true" OnClick="btnNotIncluded_Click"></asp:LinkButton>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                </Columns>
            </MasterTableView>
        </telerik:RadGrid>
Pavlina
Telerik team
 answered on 27 Mar 2014
1 answer
100 views
Telerik.CommonInstaller.ProductInfoService.ProductInfoServiceException: Failed to retrieve ValidationVersion.xml from ProductInfoService. ---> System.EntryPointNotFoundException: Unable to find an entry point named 'GetCurrentPackageId' in DLL 'kernel32.dll'.
   at Microsoft.Win32.UnsafeNativeMethods._GetCurrentPackageId(Int32& pBufferLength, Byte[] pBuffer)
   at Microsoft.Win32.UnsafeNativeMethods._IsPackagedProcess()
   at Microsoft.Win32.UnsafeNativeMethods.<.cctor>b__0()
   at System.Lazy`1.CreateValue()
   at System.Lazy`1.LazyInitValue()
   at System.Lazy`1.get_Value()
   at System.Xml.Serialization.TempAssembly.LoadGeneratedAssembly(Type type, String defaultNamespace, XmlSerializerImplementation& contract)
   at System.Xml.Serialization.XmlSerializer..ctor(Type type, String defaultNamespace)
   at Telerik.CommonInstaller.ProductInfoService.ProductInfoService.DeserializeRemoteObject[T](String sourceUri, String sourceName)
   --- End of inner exception stack trace ---
   at Telerik.CommonInstaller.ProductInfoService.ProductInfoService.DeserializeRemoteObject[T](String sourceUri, String sourceName)
   at Telerik.CommonInstaller.ProductInfoService.ProductInfoService.get_WebInstallerValidationVersion()
   at Telerik.CommonInstaller.Application.Services.DeprecationService.GetWebInstallerMinVersion()
   at Telerik.CommonInstaller.Application.Services.DeprecationService.CheckWebInstallerDeprecated()
   at Telerik.CommonInstaller.WebInstaller.App.CheckIsDeprecated()
   at Telerik.CommonInstaller.InstallerUIBase.ApplicationBase.OnStartup(StartupEventArgs e)
   at Telerik.CommonInstaller.WebInstaller.App.OnStartup(StartupEventArgs e)
   at System.Windows.Application.<.ctor>b__1(Object unused)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
Vesko
Telerik team
 answered on 27 Mar 2014
1 answer
148 views
Hi Team,
Currently we are using Rad Controls for ASP.NET AJAX Q3 2010. While replacing the classic ASP.Net grid with Telerik Radgrid, we have noticed that the loading of telerik dll is taking around 6 - 7 seconds. Can anyone please confirm whether any performance issue have been reported on Rad Controls for ASP.NET AJAX Q3 2010.
Is there any improvements unloading the telerik dll in latest 2014 Q1 controls.

Thanks,
Suresh
Maria Ilieva
Telerik team
 answered on 27 Mar 2014
14 answers
217 views
We have the RadEditor inside a RadGrid.  When the user adds a new record or edits one, the RadEditor applears to do the work.

Often, when someone firsts enters the site, goes to the page, and brings up the RadEditor, the RadEditor runs off the edge of the page expanding the RadGrid with it.  The text area of the RadEditor is only one line high.  See the attached picture (RadEditor_Error).

However, if the same person goes to another page, and comes back to the page, the RadEditor appears fine from then on.  See attached picture (RadEditor_Good).

We have size settings on the Rad_Editor but this keeps happening.

Could someone please help.

Thank you,

Alex
Ianko
Telerik team
 answered on 27 Mar 2014
6 answers
299 views
I am not able to perform uploads after setting up the upload, view, and initial paths in the page load of the solution.  The file explorer shows the initial path and I am able to navigate folders and select files.  I am using your Telerik example here .  What am I missing?  How can I initiate a download to the .ashx handler file identified in the MappingFile.mapping configuration file?  Thanks in advance.
Vessy
Telerik team
 answered on 27 Mar 2014
1 answer
118 views
Hi Team,

I am using RadDatePicker to filter BoundColumn which gets the Date from the database in string format .

For getting Date from SQL Server , we are getting Date in format as 107 and Date string as "MMM dd,yyyy" .

For example we are getting date string from DB as "Jan 10,2014" . We are using RowFilter on date value selected from RadDatePicker.

But RadDatePicker is not displaying date in format needed that is "MMM dd,yyyy" .It is breaking at "," .

Please suggest way to change displaydateformat of RadDatePicker to "MMM dd,yyyy" to fix this issue.

I tried using 
dtpicker.DateInput.DisplayDateFormat = "MMM dd,yyyy" ;
where dtpicker is ID of RadDatepicker .
It is not working , please suggest a way to fix this .

Regards,
-Dinesh Kotwani
Vasil
Telerik team
 answered on 27 Mar 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?