https://bz.apache.org/bugzilla/show_bug.cgi?id=59200
Morgan Hull <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW --- Comment #2 from Morgan Hull <[email protected]> --- Sorry if this isn't in a reasonable format, I'm completely new to this. String promptTitle; DataValidation dataValidation; CellRangeAddressList headerCell = new CellRangeAddressList(ImportFileBundleSheets.FIRST_ROW_INDEX, ImportFileBundleSheets.FIRST_ROW_INDEX, columnNum, columnNum); DataValidationConstraint constraint = sheet.getDataValidationHelper().createCustomConstraint("A1<>\"\""); dataValidation = new HSSFDataValidation(headerCell, constraint); promptTitle = PortalServices.getI18nString(adminLocale, GroupImportConstants.PROMPT_TITLE); dataValidation.createPromptBox("Some long title that is greater than 32 characters in length", promptDescription); dataValidation.setShowErrorBox(false); sheet.addValidationData(dataValidation); -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
