You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@streampark.apache.org by GitBox <gi...@apache.org> on 2022/11/02 07:56:16 UTC

[GitHub] [incubator-streampark] green241 opened a new issue, #1947: [Add User] Wrong style of drop-down box options

green241 opened a new issue, #1947:
URL: https://github.com/apache/incubator-streampark/issues/1947

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/streampark/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues.
   
   
   ### What happened
   
   normal:
   ![image](https://user-images.githubusercontent.com/14801784/199430497-5e42d22c-1964-40da-ba41-18552d2dc718.png)
   
   however, After scrolling up the mouse, it shows as following:
   ![image](https://user-images.githubusercontent.com/14801784/199430789-c3b19548-0ef2-4680-9057-84f96f6c62da.png)
   
   surprise, After scrolling down the mouse, it shows as following:
   ![image](https://user-images.githubusercontent.com/14801784/199431002-49a5a83c-0dab-4f4f-ad5c-9f412a4ee34f.png)
   
   
   ### StreamPark Version
   
   dev branch.
   
   ### Java Version
   
   ![image](https://user-images.githubusercontent.com/14801784/199431253-23d404bb-dfd3-40c2-96f8-6168c8bc1ef4.png)
   
   
   
   ### Flink Version
   
   1.14.3
   
   ### Scala Version of Flink
   
   2.12
   
   ### Error Exception
   
   ```log
   Not involved, referring "What happened" module.
   ```
   
   
   ### Screenshots
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampark.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-streampark] green241 commented on issue #1947: [Add User] Wrong style of drop-down box options

Posted by GitBox <gi...@apache.org>.
green241 commented on issue #1947:
URL: https://github.com/apache/incubator-streampark/issues/1947#issuecomment-1300388835

   Thanks for your deatil reply, I will have a try.
   
   
   
   ---- Replied Message ----
   | From | Sizhu ***@***.***> |
   | Date | 11/02/2022 16:28 |
   | To | ***@***.***> |
   | Cc | ***@***.******@***.***> |
   | Subject | Re: [apache/incubator-streampark] [Add User] Wrong style of drop-down box options (Issue #1947) |
   
   Thank you for your feedback, this is due to the dropdown box rendered into the body of the page, causing a positioning error, we will fix him in the new version. Of course, you can also change it yourself by doing the following
   
   streampark-console/streampark-console-webapp/src/views/system/user/UserAdd.vue
   
   Add a property to the select component of the User Type form item
   
   :getPopupContainer="(triggerNode) => triggerNode.parentNode"
   
   
   The sample
   
   <a-form-item
       label="User Type"
       v-bind="formItemLayout">
       <a-select
         mode="single"
         :getPopupContainer="(triggerNode) => triggerNode.parentNode"
         :allow-clear="false"
         style="width: 100%"
         v-decorator="['userType',{rules: [{ required: true, message: 'please select user type' }]}]">
         <a-select-option
           v-for="userType in userTypeData"
           :key="userType">
           {{ userType }}
         </a-select-option>
       </a-select>
     </a-form-item>
   
   
   —
   Reply to this email directly, view it on GitHub, or unsubscribe.
   You are receiving this because you authored the thread.Message ID: ***@***.***>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-streampark] wolfboys closed issue #1947: [Add User] Wrong style of drop-down box options

Posted by GitBox <gi...@apache.org>.
wolfboys closed issue #1947: [Add User] Wrong style of drop-down box options
URL: https://github.com/apache/incubator-streampark/issues/1947


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-streampark] wangsizhu0504 commented on issue #1947: [Add User] Wrong style of drop-down box options

Posted by GitBox <gi...@apache.org>.
wangsizhu0504 commented on issue #1947:
URL: https://github.com/apache/incubator-streampark/issues/1947#issuecomment-1299806658

   Thank you for your feedback, this is due to the dropdown box rendered into the body of the page, causing a positioning error, we will fix him in the new version. Of course, you can also change it yourself by doing the following
   
   streampark-console/streampark-console-webapp/src/views/system/user/UserAdd.vue
   
   Add a property to the select component of the User Type form item
   
   	:getPopupContainer="(triggerNode) => triggerNode.parentNode"
   
   The sample
   
   	<a-form-item
           label="User Type"
           v-bind="formItemLayout">
           <a-select
             mode="single"
             :getPopupContainer="(triggerNode) => triggerNode.parentNode"
             :allow-clear="false"
             style="width: 100%"
             v-decorator="['userType',{rules: [{ required: true, message: 'please select user type' }]}]">
             <a-select-option
               v-for="userType in userTypeData"
               :key="userType">
               {{ userType }}
             </a-select-option>
           </a-select>
         </a-form-item>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org