cancel
Showing results for 
Search instead for 
Did you mean: 

problem in theme designer

srahemi
Participant

Hi every one

in my code i use Table from library m

when i want create theme in tcode "/UI5/THEME_DESIGNER" my columns get color from "Text Coler" Instead "Column Header Text Color"

<Page showHeader="false">
		<content>
			<Table sticky="ColumnHeaders" id="idProductsTable" items="{viewModel>/E1Set}">
				<headerToolbar>
					<OverflowToolbar>
						<content>
							<ComboBox id="role" placeholder="Role"/>
							<ComboBox id="branch" placeholder="Branch" required="true"/>
							<ComboBox id="state" placeholder="State" selectedKey="10" required="true">
								<items>
									<core:Item text="در انتظار تایید" key="10"/>
								</items>
							</ComboBox>
							<Button icon="sap-icon://filter" type="Neutral" width="50px" press="btn_filter_press"/>
						</content>
					</OverflowToolbar>
				</headerToolbar>
				<columns>
					<Column>
						<Label text="سرپرستی فروش"/>
					</Column>
					<Column>
						<Text text="شماره سفارش"/>
					</Column>
					<Column>
						<Text text="مبلغ سفارش"/>
					</Column>
					<Column>
						<Text text="اشتراک"/>
					</Column>
					<Column>
						<Text text="نام مشتری"/>
					</Column>
					<Column width="20%">
						<Text text="نام فروشگاه"/>
					</Column>
					<Column>
						<Text text="موعد تحویل"/>
					</Column>
				</columns>
				<items>
					<ColumnListItem type="Navigation">
						<cells>
							<Text text="{viewModel>Office_Name}"/>
							<Text text="{viewModel>Order_No}"/>
							<Text text="{viewModel>OrderPrice}"/>
							<Text text="{viewModel>Customer_Code}"/>
							<Text text="{viewModel>Customer_Name}"/>
							<Text text="{viewModel>Shop_Name}"/>
							<Text text="{viewModel>Give_Date}"/>
						</cells>
					</ColumnListItem>
				</items>
			</Table>
		</content>
	</Page><br>

Accepted Solutions (1)

Accepted Solutions (1)

dsch
Advisor
Advisor

Hi Sina,

I was able to reproduce and analyze the problem. As it lies in the implementation of the Text and Label UI5 controls, I've created an SAP-internal incident to make the colleagues aware. Look forward to upcoming UI5 releases for a fix.

Best
Dominik

dsch
Advisor
Advisor

Hi again!

I'm happy to let you know that UI5 just informed me that they have fixed the issue in master and downported the fix to 1.108, 1.105, 1.102 and 1.96. I'm unable to find specific release dates for the different codelines, but with the next respective release you should see an improvement.

Best
Dominik

Answers (0)