我有一個RadGrid,但它橫跨整個頁面的寬度,我如何控制它並在單元格中設置寬度和mae內容,如果他們需要的話呢?我找不到任何幫助我的東西。我嘗試了MasterTableView-TableLayout =「fix」,但是單元格中的任何內容都會被截斷。任何幫助將非常感激:如何控制radgrid的寬度
<RadGrid:CustomRadGrid ID="DetailsGrid" runat="server" AutoGenerateColumns="False"
ShowFooter="True" OnNeedDataSource="DetailsGrid_NeedDataSource" OnItemDataBound="DetailsGrid_ItemDataBound"
OnItemCreated="DetailsGrid_ItemCreated"
OnItemCommand="DetailsGrid_ItemCommand"
GridLines="None" AllowFilteringByColumn="True"
AllowPaging="True"
AllowSorting="True"
AllowMultiRowSelection="true">
這是自定義GRID
當你把它放在RadGrid標籤中時發生了什麼? – codingbiz
什麼都沒發生 – user710502